home *** CD-ROM | disk | FTP | other *** search
- # !TCPIPUser.AutoExec
- # Commands executed automatically whenever !TCPIP starts up.
-
- @if net_provider$="Demon"
- finger status@gate.demon.co.uk \ XV80 YE40 YV24
- # Display latest information about problems
- # with Demon machines etc.
-
- finger {node}@post.demon.co.uk \ XV80 YE24 YV24
- # List any mail messages waiting to be
- # delivered to you. Demon will send them to
- # you shortly after you connect.
- @else
- # Some providers (e.g. Demon) provide information about any problems etc.
- # with their service, through the 'finger' service. E.g.
- # finger status@gate.demon.co.uk
- # If your provider has a similar mechanism, this is a good place to put it.
- @endif
-
- @if net_time_server$>""
- time server {{net_time_server}}
- # Define the machine from which to get
- # the network time.
-
- time set
- # Reset the Acorn's clock according to net
- # time
- @endif
-
- # Sending and receiving of mail
-
- smtp gateway {{net_mail_server}}
- # A machine operated by your provider used
- # to gateway outgoing mail. Using this
- # gateway means you don't have to wait for
- # smtp to check that the destination
- # address is correct - the gateway does
- # that later - so you spend less time
- # on-line. However, the gateway will
- # mean that mail is not delivered as
- # quickly.
-
- smtp kick
- # Kick outgoing mail.
- @if net_mail_protocol$="SMTP"
- # Note that it's up to {{net_provider_name}} to
- # deliver any incoming mail - nothing we do
- # affects when that happens (which should be
- # soon after login).
- @else
- # Note that, even though we fetch mail using
- # the POP3 protocol, outgoing mail is still
- # sent using SMTP.
- @endif
-
- @if net_mail_protocol$="POP"
- set pop_server {{net_mail_server}}
- # POP3 mail server for incoming mail.
-
- set pop_time 420
- # Time interval (in seconds) between checks
- # for new mail - here an arbitrary 7 minutes.
-
- set pop_user {{net_pop_user}}
- # Username for POP mail.
-
- set pop_pw "{{net_pop_password}}"
- # Password for above username.
-
- set pop_prefix {{net_pop_prefix}}
- # Abbreviation used to refer to the
- # POP mail server.
-
- pop addserver {pop_server} {pop_time} {pop_user} {pop_pw} {pop_prefix}
- # Define the machine which handles POP
- # mail, username, password and abbreviation,
- # check every 7 minutes.
-
- pop kick {pop_prefix}
- # Receive any POP mail.
-
- @endif
-
- # Usenet news
-
- set news_server {{net_news_server}}
- # Name of news server.
-
- set news_time 1800
- # Time interval (in seconds) between news
- # downloads, assuming you stay logged on for
- # that long. Here, an arbitrary 30 minutes.
-
- set news_prefix {{net_news_prefix}}
- # This prefix (4 characters max) is used
- # to start all files related to grabbing
- # news from this server, in particular:
- # {{net_news_prefix}}Groups List of newsgroups to fetch
- # {{net_news_prefix}}Last Date and time of last fetch
- # {{net_news_prefix}}Hist List of articles already seen
-
- nntp addserver {news_server} {news_time} {news_prefix}
- # Add the news server
-
- nntp kick {news_prefix}
- # Post any news articles you've written,
- # then start downloading news.
-